home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.4)
-
- from test.test_support import TestFailed
- import sys
- import os
-
- try:
- import __hello__
- except ImportError:
- x = None
- raise TestFailed, 'import __hello__ failed:' + str(x)
-
-
- try:
- import __phello__
- except ImportError:
- x = None
- raise TestFailed, 'import __phello__ failed:' + str(x)
-
-
- try:
- import __phello__.spam as __phello__
- except ImportError:
- x = None
- raise TestFailed, 'import __phello__.spam failed:' + str(x)
-
- if sys.platform != 'mac':
-
- try:
- import __phello__.foo as __phello__
- except ImportError:
- pass
-
- raise TestFailed, 'import __phello__.foo should have failed'
-
-